大器免成

道可道,check out.

当前显示的标签为: 「Sublime Text」的博文

Sublime Text 常用快捷键

当前使用Sublime Text 4,持续更新中。 ⌘在PC里是Ctrl键。 移动字符串 向右:⌘ + ] 向左:⌘ + ] 改变字符大小写 全大写:⌘ + k + u 全小写:⌘ + k + l 先按住⌘ + k,然后再按u或l。 修复Mac下home和end会直接跳转到文本开头和结尾 打开配置:Preferences > Key Bindings 在配置数组里增加: { "keys": ["home"], "command": "move_to", "args": {"to": "bol"} }, { "keys": ["end"], "command": "move_to", "args": {"to": "eol"} }, { "keys": ["shift+end"], "command": "move_to", "args": {"to": "eol", "extend": true} }, { "keys": ["shift+home"], "command": "move_to", "args": {"to": "bol", "extend": true } } 来源: https://gist.github.com/ihor-lev/120e4c822d145f690f90a3fee77e2e53......